Subsection [MsgAndLbl]

This subsection contains the variables that define labels and style for navigation links (for previous, next, first and last page) and messages (empty recordset and deleted records). They can contain any valid HTML code including WhizBase report tags and functions both in input and output syntax.
It can also contain variables for formatting navigation links WB_DigitDir and WB_Style .

These are variables that can be stored in this subsection (in alphabetic order):
WB_DigitDir
WB_Style
WBL_FirstPage
WBL_LastPage
WBL_NextPage
WBL_PrevPage
WBM_Deleted
WBM_NoMatch

Here is the example of MsgAndLbl section (marked blue):

<!--
[FormFields]
WB_basename=biblio.mdb
wb_rcdset=titles
wb_command=Q
[MsgAndLbl]
WB_DigitDir=digits/
WB_Style=color:#CC0000; text-decoration: none
wbl_nextpage=<img src="images/rightarrow.gif" border="0">
wbl_prevpage=<img src="images/leftarrow.gif" border="0">
wbl_lastpage=<img src="images/last.gif" border="0">
wbl_firstpage=<img src="images/first.gif" border="0">
wbm_nomatch=Sorry!<br>Your search returned no records!<br><a href="JavaScript:history.back();">Please try again with other parameters</a>
wbm_deleted=Operation completed!<br><b>$WBDeleted</b> record(s) successfully removed from your database!
-->

<!--WB_BeginTemplate-->
<html>
<head>
<title>Titles</title>
</head>
<body>
<table border="1" cellspacing="0">
<tr>
<td>Year published</td>
<td>Title</td>
<td>ISBN</td>
</tr>
<!--WB_BeginDetail-->
<tr>
<td>$wbf[Year published]</td>
<td>$wbf[title]</td>
<td>$wbf[ISBN]</td>
</tr>
<!--WB_EndDetail-->
</table>
<center>$wbnavigator</center>
</body>
</html>

To test this example, create images rightarrow.gif, leftarrow.gif, first.gif and last.gif and place them in directory images located in same directory with this wbsp file. Also create images of the digits 0 to 9 (name them 0.gif, 1.gif, 2.gif, ..., 9.gif) and place them in directory digits located in same directory with this wbsp file.